* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

a:link {text-decoration: none;}
a:visited {text-decoration: none;}
a:hover {text-decoration: none;}
a:active {text-decoration: none;}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #87ceeb;
    border-top: 5px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Top Header */
.top-header {
    background: linear-gradient(90deg, #e6f0fa, #d3e5f5);
    padding: 15px 0;
    font-size: 14px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.top-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 20px;
}

.contact-info i {
    color: #87ceeb;
    margin-right: 8px;
}
.contact-info a {
    color: #333;
}

.social-icons .social-link {
    color: #333;
    margin-left: 15px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons .social-link:hover {
    transform: scale(1.2);
    color: #87ceeb;
}

/* Header */
header {
    background: #87ceeb;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    padding: 15px 20px;
    display: block;
    transition: background 0.3s ease;
}

.nav-menu a:hover {
    background: rgba(255,255,255,0.2);
}

.dropdown-menu {
    display: none;
    position: absolute;
    background: #87ceeb;
    min-width: 280px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    top: 100%;
    left: 0;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: all 0.3s ease;
}

/* Carousel */
.carousel {
    position: relative;
    height: 800px;
    overflow: hidden;
}

.slides {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.8s ease-in-out;
}

.slide {
    min-width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
}

.slide-content {
    position: relative;
    z-index: 2;
}

.slide-content h1 {
    font-size: 60px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

.slide-content p {
    font-size: 20px;
    margin-bottom: 30px;
}

.cta-btn {
    display: inline-block;
    padding: 15px 30px;
    background: #87ceeb;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.cta-btn:hover {
    background: #6bb9d6;
    transform: scale(1.05);
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    padding: 15px;
    cursor: pointer;
    z-index: 3;
    transition: background 0.3s ease;
}

.prev:hover, .next:hover {
    background: rgba(0,0,0,0.8);
}

.prev { left: 20px; }
.next { right: 20px; }

/* About */
.about {
    padding: 80px 0;
    background: #fff;
}

.about h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
    color: #666;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Services */
.services {
    padding: 80px 0;
    background: #f9f9f9;
    text-align: center;
}

.services h2 {
    font-size: 36px;
    margin-bottom: 50px;
}

.service-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); /* Min-width 250px'ten 220px'e düşürüldü */
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.service-card i {
    font-size: 40px;
    color: #87ceeb;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
}

.read-more {
    color: #87ceeb;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #6bb9d6;
}

/* Pricing */
.pricing {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.pricing h2 {
    font-size: 36px;
    margin-bottom: 50px;
}

.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: scale(1.05);
}

.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.pricing-card .price {
    font-size: 36px;
    color: #87ceeb;
    margin-bottom: 20px;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-card ul li {
    margin-bottom: 10px;
    color: #666;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: #f9f9f9;
    text-align: center;
}

.testimonials h2 {
    font-size: 36px;
    margin-bottom: 50px;
}

.testimonial-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.testimonial-card p {
    font-style: italic;
    color: #666;
    margin-bottom: 20px;
}

.testimonial-card h4 {
    font-size: 20px;
    margin-bottom: 5px;
}

.testimonial-card span {
    color: #87ceeb;
}

/* Blog */
.blog {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.blog h2 {
    font-size: 36px;
    margin-bottom: 50px;
}

.blog-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card h3 {
    font-size: 20px;
    margin: 20px;
}

.blog-card p {
    color: #666;
    margin: 0 20px 20px;
}

/* FAQ */
.faq {
    padding: 80px 0;
    background: #f9f9f9;
    text-align: center;
}

.faq h2 {
    font-size: 36px;
    margin-bottom: 50px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    margin-bottom: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.faq-item p {
    color: #666;
}

/* Footer */
footer {
    background: #2d2d2d;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-col p, .footer-col ul li {
    margin-bottom: 10px;
}

.footer-col i {
    margin-right: 10px;
    color: #87ceeb;
}
.footer-col a {
    color: #fff;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul a:hover {
    color: #87ceeb;
}

.footer-col form input,
.footer-col form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: none;
    border-radius: 5px;
}

.footer-col form button {
    padding: 10px 20px;
    background: #87ceeb;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.footer-col form button:hover {
    background: #6bb9d6;
}

.footer-col iframe {
    width: 100%;
    height: 200px;
    border: 0;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #444;
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-header .container {
        flex-direction: column;
        text-align: center;
    }

    .social-icons {
        margin-top: 10px;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 70px;
        left: 0;
        background: #87ceeb;
    }

    .nav-menu.active {
        display: flex;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        transform: none;
    }

    .hamburger {
        display: flex;
    }

    .carousel {
        height: 500px;
    }

    .slide-content h1 {
        font-size: 40px;
    }

    .slide-content p {
        font-size: 16px;
    }

    .about-content {
        flex-direction: column;
    }
}

.detail-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.detail-section h1 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.detail-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.detail-image img {
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.detail-text {
    flex: 1;
}

.detail-text p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #34495e;
}

.detail-text h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.stages h4 {
    font-size: 20px;
    margin: 20px 0 10px;
    color: #2980b9;
}

.stages p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #34495e;
}

.detail-text .btn {
    background-color: #3498db;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
    transition: background-color 0.3s;
}

.detail-text .btn:hover {
    background-color: #2980b9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .detail-content {
        flex-direction: column;
        gap: 20px;
    }

    .detail-image img {
        max-width: 100%;
    }

    .detail-section h1 {
        font-size: 28px;
    }

    .detail-text p {
        font-size: 16px;
    }

    .stages h4 {
        font-size: 18px;
    }
}
.detail-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.detail-section h1 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.detail-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.detail-image img {
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.detail-text {
    flex: 1;
}

.detail-text p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #34495e;
}

.detail-text h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.detail-text ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.detail-text ul li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #34495e;
}

.detail-text .btn {
    background-color: #3498db;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
    transition: background-color 0.3s;
}

.detail-text .btn:hover {
    background-color: #2980b9;
}

/* İletişim Sayfasına Özgü Stiller */
.contact-section .detail-content {
    flex-wrap: wrap;
}

.contact-info, .contact-form {
    flex: 1;
    min-width: 300px;
}

.contact-info ul {
    list-style: none;
    padding-left: 0;
}

.contact-info ul li {
    font-size: 16px;
    margin-bottom: 15px;
    color: #34495e;
}

.map-container {
    margin-top: 20px;
}

.map-container iframe {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input, .contact-form textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form .btn {
    background-color: #3498db;
    border: none;
    cursor: pointer;
}

.contact-form .btn:hover {
    background-color: #2980b9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .detail-content {
        flex-direction: column;
        gap: 20px;
    }

    .detail-section h1 {
        font-size: 28px;
    }

    .detail-text p {
        font-size: 16px;
    }

    .detail-text h3 {
        font-size: 20px;
    }

    .contact-info, .contact-form {
        width: 100%;
    }
}

/* Blog Listeleme Section Stilleri */
.blog-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.blog-section h1 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.blog-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.blog-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s;
}

.blog-item:hover {
    transform: translateY(-5px);
}

.blog-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-item h3 {
    font-size: 20px;
    margin: 15px;
    color: #2c3e50;
}

.blog-item p {
    font-size: 16px;
    line-height: 1.5;
    margin: 0 15px 15px;
    color: #34495e;
}

.blog-item .btn {
    display: block;
    margin: 0 15px 15px;
    padding: 10px 20px;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .detail-section h1, .blog-section h1 {
        font-size: 28px;
    }

    .detail-text p {
        font-size: 16px;
    }

    .detail-text h3 {
        font-size: 20px;
    }

    .blog-item h3 {
        font-size: 18px;
    }

    .blog-item p {
        font-size: 14px;
    }
}

.blog-item .btn {
    display: block;
    margin: 0 15px 15px;
    padding: 10px 20px;
    text-align: center;
    background: linear-gradient(45deg, #3498db, #2980b9); /* Gradient arka plan */
    color: #fff;
    text-decoration: none;
    border-radius: 25px; /* Daha yuvarlak kenarlar */
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Hafif gölge */
    transition: all 0.3s ease; /* Pürüzsüz geçiş efekti */
}

.blog-item .btn:hover {
    background: linear-gradient(45deg, #2980b9, #1f6391); /* Hover'da koyulaşan gradient */
    transform: translateY(-2px); /* Hafif yükselme efekti */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); /* Hover'da gölge artışı */
}

/* Blog Detay Section Stilleri */
.blog-detail-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.blog-detail-section h1 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.blog-meta {
    text-align: center;
    margin-bottom: 30px;
}

.blog-meta p {
    font-size: 14px;
    color: #7f8c8d;
}

.blog-content {
    max-width: 800px;
    margin: 0 auto;
}

.blog-content .blog-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.blog-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #34495e;
}

.blog-content h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: #2c3e50;
}

.blog-content .btn {
    background-color: #3498db;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
    margin-top: 20px;
}

.blog-content .btn:hover {
    background-color: #2980b9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-detail-section h1 {
        font-size: 28px;
    }

    .blog-content p {
        font-size: 16px;
    }

    .blog-content h3 {
        font-size: 20px;
    }

    .blog-meta p {
        font-size: 12px;
    }
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 2.5rem;
    padding-bottom: 2rem;
    flex-wrap: wrap; /* Küçük ekranlarda taşmayı önler */
}

.pagination a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 1rem;
    background: #00aaff; /* Tasarımınıza uyumlu mavi ton */
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease; /* Renk ve gölge için yumuşak geçiş */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Hafif gölge */
}

.pagination a:hover {
    background: #0088cc; /* Hover'da koyulaşır */
    transform: translateY(-2px); /* Hafif yükselme efekti */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); /* Gölge artar */
}

.pagination a.active {
    background: #1e5c71; /* Aktif sayfa için daha koyu bir ton */
    font-weight: 700;
    transform: scale(1.05); /* Aktif sayfa biraz büyür */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* Daha belirgin gölge */
}

.pagination a.disabled {
    background: #ccc; /* Pasif durum için gri ton */
    color: #666;
    pointer-events: none; /* Tıklanamaz hale getirir */
    box-shadow: none;
}

/* Önceki ve Sonraki Butonları için Ek Stil */
.pagination a.prev,
.pagination a.next {
    padding: 0 1.5rem;
    font-weight: 600;
}

.pagination a.prev::before,
.pagination a.next::after {
    font-size: 18px;
    margin: 0 5px;
}

.pagination a.prev::before {
    content: "◄"; /* Sol ok */
}

.pagination a.next::after {
    content: "►"; /* Sağ ok */
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .pagination {
        gap: 8px;
    }
    
    .pagination a {
        min-width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .pagination a.prev,
    .pagination a.next {
        padding: 0 1rem;
    }
}