       /* Genel Stiller */
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 2.5rem;
            position: relative;
            padding-bottom: 15px;
        }
		
		.text-muted {
		color:#ffffff!important;
		}
		.text-primary {
    color: #0066cc !important;
}

.btn-primary {
    background-color:#0066cc!important;
	border-color:#0066cc!important;
}
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: #0066cc;
        }
        
        section {
            padding: 5rem 0;
        }
        
        /* Header Stili */
        .navbar {
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 12px 0;
            background-color: white !important;
        }
        
        .navbar-brand img {
            max-height: 50px;
        }
        
        /* Hero/Slider Stili */
        .hero-slider {
            height: 100vh;
            width: 100%;
            overflow: hidden;
            position: relative;
            background: url('../img/slider1bg.jpg') center/cover no-repeat;
        }
        
        .hero-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: white;
            width: 80%;
            max-width: 800px;
            z-index: 2;
        }
        
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 1;
        }
        
        .hero-title {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        
        .hero-description {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
        }
        
        /* Hizmetler Stili */
        .services-card {
            transition: all 0.3s ease;
            margin-bottom: 30px;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .services-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 20px rgba(0,0,0,0.15);
        }
        
        .services-icon {
            font-size: 2.5rem;
            color: #0066cc;
            margin-bottom: 1rem;
        }
        
        /* CTA Stili */
        .cta-section {
            background: linear-gradient(45deg, #0066cc, #0099ff);
            color: white;
        }
        
        .cta-icon {
            font-size: 4rem;
            margin-bottom: 1rem;
        }
        
        /* Hakkımızda Stili */
        .about-img {
            border-radius: 10px;
            max-width: 100%;
        }
        
        /* İletişim Stili */
        .contact-info i {
            color: #0066cc;
            font-size: 1.5rem;
            margin-right: 10px;
        }
        
        .contact-info p {
            margin-bottom: 1rem;
        }
        
        /* Footer Stili */
        footer {
            background-color: #1a1a2e;
            color: white;
            padding: 3rem 0;
            margin-bottom:3rem!important;
        }
        
        .footer-links h5 {
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-links h5:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: #0066cc;
        }
        
        .footer-links ul {
            padding-left: 0;
            list-style: none;
        }
        
        .footer-links ul li {
            margin-bottom: 0.5rem;
        }
        
        .footer-links ul li a {
            color: #adb5bd;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links ul li a:hover {
            color: white;
        }
        
        .social-icons a {
            display: inline-block;
            width: 35px;
            height: 35px;
            background: #343a40;
            color: white;
            text-align: center;
            line-height: 35px;
            border-radius: 50%;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        
        .social-icons a:hover {
            background: #0066cc;
            transform: translateY(-3px);
        }
		/* Çağrı Butonu Animasyonu */
.call-button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid #0066cc;
}

.call-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.4);
}

.call-button:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.call-button:hover:before {
    left: 100%;
}

.shake-icon {
    animation: shake 2s infinite;
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    2%, 6%, 10% { transform: rotate(-10deg); }
    4%, 8%, 12% { transform: rotate(10deg); }
    14%, 18% { transform: rotate(-5deg); }
    16%, 20% { transform: rotate(5deg); }
    22%, 100% { transform: rotate(0deg); }
}

/* Navbar menü öğeleri için stil */
.navbar-nav .nav-item {
    margin: 0 3px;  /* Menü öğeleri arasındaki boşluğu ayarlar */
}

.navbar-nav .nav-link {
    text-transform: uppercase;  /* Tüm metni büyük harfe çevirir */
    font-weight: 500;  /* Yazı tipini biraz daha kalın yapar */
    letter-spacing: 0.3px;  /* Harfler arasındaki boşluğu arttırır */
}

/* Mobil uyumlu dropdown menü için CSS düzenlemeleri */
@media (max-width: 767px) {
  /* Dropdown menü genişliği */
  .dropdown-large {
    width: 100%;
    padding: 0;
  }
  
  /* Dropdown içindeki satır düzeni */
  .dropdown-large .row {
    margin: 0;
    width: 100%;
  }
  
  /* Kolon düzeni - mobilde tam genişlik */
  .dropdown-large .col-6 {
    width: 100%;
    padding: 0;
    margin-bottom: 10px;
  }
  
  /* Başlık stillerini düzenle */
  .dropdown-header {
    text-align: center;
    padding: 10px;
    font-weight: 600;
    background-color: #f8f9fa;
    margin-top: 5px;
  }
  
  /* Dropdown öğelerini düzenle */
  .dropdown-item {
    padding: 8px 15px;
    text-align: center;
  }
  
  /* Dropdown menü konumu */
  .dropdown-menu-end {
    right: auto;
    left: 0;
  }
}

/* Genel dropdown stillemesi */
.dropdown-large {
  min-width: 400px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Dropdown açıldığında animasyon */
.dropdown-menu {
  transition: all 0.3s;
}

/* Dropdown toggle ikonu için */
.dropdown-toggle::after {
  transition: transform 0.3s;
}

.dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(180deg);
}
        
        /* Responsif Ayarlar */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-description {
                font-size: 1rem;
            }
            
            section {
                padding: 3rem 0;
            }
        }
		
		@media (min-width: 992px) {
    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
        padding: 10px;
    }
}

        /* Genel Stiller */
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 2.5rem;
            position: relative;
            padding-bottom: 15px;
        }
		
		.text-muted {
		color:#ffffff!important;
		}
		.text-primary {
            color: #FF0000 !important;
        }

        .btn-primary {
            background-color:#FF0000!important;
            border-color:#FF0000!important;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: #FF0000;
        }
        
        section {
            padding: 5rem 0;
        }
        
        /* Header Stili */
        .navbar {
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 12px 0;
            background-color: white !important;
        }
        
        .navbar-brand img {
            max-height: 50px;
        }
        
        /* Page Header */
        .page-header {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../img/services-bg.jpg') center/cover no-repeat;
            color: white;
            padding: 100px 0 50px;
            margin-top: 76px;
        }
        
        /* Service Details */
        .service-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .service-features {
            background-color: #f8f9fa;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .feature-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: #FF0000;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin-bottom: 15px;
        }
        
        .accordion-button:not(.collapsed) {
            background-color: #f8f9fa;
            color: #FF0000;
        }
        
        .steps-container {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .steps-container:before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            height: 100%;
            width: 2px;
            background: #FF0000;
            transform: translateX(-50%);
        }
        
        .step {
            position: relative;
            background: white;
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .step-number {
            width: 50px;
            height: 50px;
            background: #FF0000;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 20px;
            margin-bottom: 15px;
        }
        
        .testimonial-card {
            background: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin-bottom: 20px;
        }
        
        .testimonial-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
        }
        
        .star-rating {
            color: #ffc107;
            font-size: 18px;
            margin-bottom: 10px;
        }
        
        /* Call to Action Stili */
        .cta-section {
            background: linear-gradient(45deg, #FF0000, #00a2ff);
            color: white;
        }
        
        .cta-icon {
            font-size: 4rem;
            margin-bottom: 1rem;
        }
        
        /* Footer Stili */
        footer {
            background-color: #212529;
            color: white;
            padding: 3rem 0;
        }
        
        .footer-links h5 {
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-links h5:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: #FF0000;
        }
        
        .footer-links ul {
            padding-left: 0;
            list-style: none;
        }
        
        .footer-links ul li {
            margin-bottom: 0.5rem;
        }
        
        .footer-links ul li a {
            color: #adb5bd;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links ul li a:hover {
            color: white;
        }
        
        .social-icons a {
            display: inline-block;
            width: 35px;
            height: 35px;
            background: #343a40;
            color: white;
            text-align: center;
            line-height: 35px;
            border-radius: 50%;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        
        .social-icons a:hover {
            background: #FF0000;
            transform: translateY(-3px);
        }
        
        /* Çağrı Butonu Animasyonu */
        .call-button {
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 2px solid #007bff;
        }

        .call-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
        }

        .call-button:before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: all 0.6s ease;
        }

        .call-button:hover:before {
            left: 100%;
        }

        .shake-icon {
            animation: shake 2s infinite;
        }

        @keyframes shake {
            0%, 100% { transform: rotate(0deg); }
            2%, 6%, 10% { transform: rotate(-10deg); }
            4%, 8%, 12% { transform: rotate(10deg); }
            14%, 18% { transform: rotate(-5deg); }
            16%, 20% { transform: rotate(5deg); }
            22%, 100% { transform: rotate(0deg); }
        }

        /* Navbar menü öğeleri için stil */
        .navbar-nav .nav-item {
            margin: 0 3px;  /* Menü öğeleri arasındaki boşluğu ayarlar */
        }

        .navbar-nav .nav-link {
            text-transform: uppercase;  /* Tüm metni büyük harfe çevirir */
            font-weight: 500;  /* Yazı tipini biraz daha kalın yapar */
            letter-spacing: 0.3px;  /* Harfler arasındaki boşluğu arttırır */
        }

        /* Mobil uyumlu dropdown menü için CSS düzenlemeleri */
        @media (max-width: 767px) {
            /* Dropdown menü genişliği */
            .dropdown-large {
                width: 100%;
                padding: 0;
            }
            
            /* Dropdown içindeki satır düzeni */
            .dropdown-large .row {
                margin: 0;
                width: 100%;
            }
            
            /* Kolon düzeni - mobilde tam genişlik */
            .dropdown-large .col-6 {
                width: 100%;
                padding: 0;
                margin-bottom: 10px;
            }
            
            /* Başlık stillerini düzenle */
            .dropdown-header {
                text-align: center;
                padding: 10px;
                font-weight: 600;
                background-color: #f8f9fa;
                margin-top: 5px;
            }
            
            /* Dropdown öğelerini düzenle */
            .dropdown-item {
                padding: 8px 15px;
                text-align: center;
            }
            
            /* Dropdown menü konumu */
            .dropdown-menu-end {
                right: auto;
                left: 0;
            }
        }

        /* Genel dropdown stillemesi */
        .dropdown-large {
            min-width: 400px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        /* Dropdown açıldığında animasyon */
        .dropdown-menu {
            transition: all 0.3s;
        }

        /* Dropdown toggle ikonu için */
        .dropdown-toggle::after {
            transition: transform 0.3s;
        }

        .dropdown-toggle[aria-expanded="true"]::after {
            transform: rotate(180deg);
        }
        
        /* Responsif Ayarlar */
        @media (max-width: 768px) {
            .page-header h1 {
                font-size: 2rem;
            }
            
            section {
                padding: 3rem 0;
            }
            
            .steps-container:before {
                display: none;
            }
        }
        
        .mb-5 {
    margin-bottom: 3rem !important;
    margin-top: 3rem !important;
}



        /* Bottom strip with oval button */
        .bottom-strip {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            height: 60px;
            background: #FF0000;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Oval button in the center */
        .call-service-btn {
            position: absolute;
            top: -25px;
            background: #FF0000;
            color: white;
            border: none;
            border-radius: 50px;
            padding: 20px 35px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 12px;
            /* box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.15); */
            transition: all 0.3s ease;
            font-family: inherit;
            /* border: 3px solid white; */
        }

        .call-service-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.2);
            background: #d73027;
        }

        .call-service-btn:active {
            transform: translateY(-1px);
        }

        /* Phone icon */
        .phone-icon {
            width: 22px;
            height: 22px;
            fill: white;
        }

        /* Button text */
        .btn-text {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            line-height: 1.1;
        }

        .btn-main-text {
            font-size: 16px;
            font-weight: 700;
            color: white;
            margin: 0;
        }
        
        .btn-main-text a {
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin: 0;
    text-decoration: none;
}

        .btn-sub-text {
            font-size: 12px;
            font-weight: 400;
            color: white;
            opacity: 0.95;
            margin: 0;
        }

        /* Left and right decorative elements on strip */
        .strip-decoration {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 80px;
            height: 3px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 2px;
        }

        .strip-decoration.left {
            left: 50px;
        }

        .strip-decoration.right {
            right: 50px;
        }

        /* Mobile responsive */
        @media (max-width: 768px) {
            .bottom-strip {
                height: 55px;
            }
            
            .call-service-btn {
                top: -22px;
                padding: 18px 30px;
            }
            
            .phone-icon {
                width: 20px;
                height: 20px;
            }
            
            .btn-main-text {
                font-size: 15px;
            }
            
            .btn-sub-text {
                font-size: 11px;
            }
            
            .strip-decoration {
                width: 60px;
            }
            
            .strip-decoration.left {
                left: 30px;
            }
            
            .strip-decoration.right {
                right: 30px;
            }
        }

        @media (max-width: 480px) {
            .bottom-strip {
                height: 50px;
            }
            
            .call-service-btn {
                top: -20px;
                padding: 16px 25px;
            }
            
            .strip-decoration {
                width: 40px;
            }
            
            .strip-decoration.left {
                left: 20px;
            }
            
            .strip-decoration.right {
                right: 20px;
            }
        }
        
                .section-title {
            text-align: center;
            margin-bottom: 2.5rem;
            position: relative;
            padding-bottom: 15px;
        }
        
        .text-muted {
            color:#ffffff!important;
        }
        
        .text-primary {
            color: #FF0000 !important;
        }

        .btn-primary {
            background-color:#FF0000!important;
            border-color:#FF0000!important;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: #FF0000;
        }
        
        section {
            padding: 5rem 0;
        }
        
        /* Header Stili */
        .navbar {
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 12px 0;
            background-color: white !important;
        }
        
        .navbar-brand img {
            max-height: 50px;
        }
        
        /* Page Header */
        .page-header {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('img/services-bg.jpg') center/cover no-repeat;
            color: white;
            padding: 100px 0 50px;
            margin-top: 76px;
        }
        
        /* Featured Image */
        .featured-image {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            margin-bottom: 30px;
        }
        
        .featured-image img {
            width: 100%;
            height: auto;
            transition: transform 0.5s ease;
        }
        
        .featured-image:hover img {
            transform: scale(1.03);
        }
        
        /* Article Content */
        .article-content {
            font-size: 1.05rem;
            line-height: 1.8;
        }
        
        .article-content h2, .article-content h3 {
            margin-top: 2rem;
            margin-bottom: 1rem;
            position: relative;
            padding-bottom: 10px;
        }
        
        .article-content h2:after, .article-content h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: #FF0000;
        }
        
        .article-content p {
            margin-bottom: 1.5rem;
        }
        
        /* Service Info Card */
        .service-info-card {
            background-color: #f8f9fa;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            margin-bottom: 30px;
        }
        
        /* Contact Box */
        .contact-box {
            background: linear-gradient(to right, #FF0000, #ff5252);
            color: white;
            border-radius: 12px;
            padding: 30px;
            margin-top: 2rem;
            box-shadow: 0 10px 20px rgba(255, 0, 0, 0.2);
        }
        
        .contact-box h3 {
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        /* Service Highlights */
        .service-highlight {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.5rem;
        }
        
        .service-highlight-icon {
            width: 50px;
            height: 50px;
            min-width: 50px;
            border-radius: 50%;
            background-color: rgba(255, 0, 0, 0.1);
            color: #FF0000;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            margin-right: 15px;
        }
        
        /* Service Areas List */
        .service-areas {
            columns: 3;
            column-gap: 30px;
            margin-bottom: 2rem;
        }
        
        .service-areas li {
            margin-bottom: 10px;
            break-inside: avoid;
        }
        
        /* Call to Action Stili */
        .cta-section {
            background: linear-gradient(45deg, #FF0000, #00a2ff);
            color: white;
        }
        
        .cta-icon {
            font-size: 4rem;
            margin-bottom: 1rem;
        }
        
        /* Çağrı Butonu Animasyonu */
        .call-button {
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 2px solid #007bff;
        }

        .call-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
        }

        .call-button:before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: all 0.6s ease;
        }

        .call-button:hover:before {
            left: 100%;
        }

        .shake-icon {
            animation: shake 2s infinite;
        }

        @keyframes shake {
            0%, 100% { transform: rotate(0deg); }
            2%, 6%, 10% { transform: rotate(-10deg); }
            4%, 8%, 12% { transform: rotate(10deg); }
            14%, 18% { transform: rotate(-5deg); }
            16%, 20% { transform: rotate(5deg); }
            22%, 100% { transform: rotate(0deg); }
        }
        
        /* Responsif Ayarlar */
        @media (max-width: 768px) {
            .page-header h1 {
                font-size: 2rem;
            }
            
            section {
                padding: 3rem 0;
            }
            
            .service-areas {
                columns: 1;
            }
        }
        
        @media (min-width: 769px) and (max-width: 992px) {
            .service-areas {
                columns: 2;
            }
        }
        
        /* Minimal Footer */
        .minimal-footer {
            background-color: #212529;
            color: white;
            padding: 1rem 0;
        }
